home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / minibb_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  62 lines

  1. #
  2. # (C) Renaud Deraison
  3. #
  4.  
  5. if (description)
  6. {
  7.  script_id(11972);
  8.  script_bugtraq_id(9310);
  9.  script_version ("$Revision: 1.5 $");
  10.  
  11.  script_name(english:"miniBB cross site scripting");
  12.  desc["english"] = "
  13. The remote host is using the miniBB forum management system.
  14.  
  15. According to its version number, this forum is vulnerable to a
  16. cross site scripting bug which may allow an attacker with a valid account
  17. to execute embed malicious HTML commands in the site.
  18.  
  19. Solution: none at this time
  20. Risk factor : Medium";
  21.  
  22.  script_description(english:desc["english"]);
  23.  script_summary(english:"Determine if MiniBB can be used to execute arbitrary commands");
  24.  script_category(ACT_GATHER_INFO);
  25.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  26.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  27.  script_dependencie("find_service.nes", "http_version.nasl");
  28.  script_require_ports("Services/www", 80);
  29.  exit(0);
  30. }
  31.  
  32. include("http_func.inc");
  33. include("http_keepalive.inc");
  34.  
  35. port = get_http_port(default:80);
  36.  
  37. if(!get_port_state(port))exit(0);
  38. if(!can_host_php(port:port)) exit(0);
  39.  
  40.  
  41. foreach d (cgi_dirs())
  42. {
  43.  url = string(d, "/index.php");
  44.  req = http_get(item:url, port:port);
  45.  buf = http_keepalive_send_recv(port:port, data:req);
  46.  if( buf == NULL ) exit(0);
  47.  str = egrep(pattern:"Powered by.*miniBB", string:buf);
  48.  if( str )
  49.    {
  50.     version = ereg_replace(pattern:".*Powered by.*miniBB (.*)</a>.*", string:str, replace:"\1");
  51.     if ( d == "" ) d = "/";
  52.  
  53.     set_kb_item(name:"www/" + port + "/minibb", value:version + " under " + d);
  54.  
  55.     if ( ereg(pattern:"^(0\.|1\.[0-6][^0-9]|7[^a-z])", string:version) )
  56.      {
  57.      security_warning(port);
  58.      exit(0);
  59.      }
  60.    }
  61. }
  62.